home *** CD-ROM | disk | FTP | other *** search
- gLabelSecurityLabel = zstring_width(zstring: '$$$/Dialogs/SecurityShowHand/SecurityLabel');
- gMaxButtonWidth = max(
- zstring_width(zstring: '$$$/Dialogs/SecurityShowHand/SecurityInfo'),
- zstring_width(zstring: '$$$/Dialogs/SecurityShowHand/SecurityChange'));
-
- dialog(name: '$$$/Dialogs/SecurityShowHand', target_id: 'secP')
- {
- group() {
- group(align_children: align_fill)
- {
- group(align_children: align_left)
- {
- view(align_children: align_row)
- {
- static_text(name: '$$$/Dialogs/SecurityShowHand/SecurityLabel');
- popup(item_id: 'secP', width: max_char_width() * 11);
- }
- view(align_children: align_row)
- {
- gap( width: gLabelSecurityLabel);
- button(item_id: 'secI', name: '$$$/Dialogs/SecurityShowHand/SecurityInfo', width: gMaxButtonWidth);
- }
- view(align_children: align_row)
- {
- gap( width: gLabelSecurityLabel);
- button(item_id: 'secS', name: '$$$/Dialogs/SecurityShowHand/SecurityChange', width: gMaxButtonWidth);
- }
- }
- static_text(item_id: 'secN', alignment: align_fill );
- }
- ok(ok_name: '$$$/Dialogs/SecurityShowHand/Close');
- }
- }
-